CODE 132. Candy

版权声明:本文为博主原创文章,转载请注明出处,谢谢!

版权声明:本文为博主原创文章,转载请注明出处:http://blog.jerkybible.com/2013/11/23/2013-11-23-CODE 132 Candy/

访问原文「CODE 132. Candy

There are N children standing in a line. Each child is assigned a rating value.
You are giving candies to these children subjected to the following requirements:

  • Each child must have at least one candy.
  • Children with a higher rating get more candies than their neighbors.

What is the minimum candies you must give?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
public int candy(int[] ratings) {
// IMPORTANT: Please reset any member data you declared, as
// the same Solution instance will be reused for each test case.
int[] left = new int[ratings.length];
int[] right = new int[ratings.length];
int min = 0;
for (int i = 0; i < ratings.length; i++) {
if (0 == i) {
left[i] = 0;
continue;
}
if (ratings[i] > ratings[i - 1]) {
left[i] = left[i - 1] + 1;
} else if (ratings[i] <= ratings[i - 1]) {
left[i] = 0;
}
}
for (int i = ratings.length - 1; i >= 0; i--) {
if (ratings.length - 1 == i) {
right[i] = 0;
continue;
}
if (ratings[i] > ratings[i + 1]) {
right[i] = right[i + 1] + 1;
} else if (ratings[i] <= ratings[i + 1]) {
right[i] = 0;
}
}
for (int i = 0; i < ratings.length; i++) {
min += left[i] > right[i] ? left[i] + 1 : right[i] + 1;
}
return min;
}
Jerky Lu wechat
欢迎加入微信公众号